ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / AutoCompleteBase<T> Class / BeginsWithSearch Property






In This Topic
    BeginsWithSearch Property (AutoCompleteBase<T>)
    In This Topic
    Gets or sets a value that determines whether to search for items that begin with the given search term. The default value for this property is False, which causes the control to search for items that contain the given search terms.
    Syntax
    'Declaration
     
    
    <System.ComponentModel.DefaultValueAttribute(False)>
    Public Property BeginsWithSearch As System.Boolean
    'Usage
     
    
    Dim instance As AutoCompleteBase(Of T)
    Dim value As System.Boolean
     
    instance.BeginsWithSearch = value
     
    value = instance.BeginsWithSearch
    [System.ComponentModel.DefaultValue(false)]
    public System.bool BeginsWithSearch {get; set;}
    public read-write property BeginsWithSearch: System.Boolean; 
    System.ComponentModel.DefaultValueAttribute()
    public function get,set BeginsWithSearch : System.boolean
    [System.ComponentModel.DefaultValue(false)]
    public: __property System.bool get_BeginsWithSearch();
    public: __property void set_BeginsWithSearch( 
       System.bool value
    );
    [System.ComponentModel.DefaultValue(false)]
    public:
    property System.bool BeginsWithSearch {
       System.bool get();
       void set (    System.bool value);
    }
    See Also